Skip to content

Commit 3dfea96

Browse files
authored
chore: update README.md files (#33919)
1 parent 6864315 commit 3dfea96

File tree

15 files changed

+133
-41
lines changed

15 files changed

+133
-41
lines changed

β€Žlibs/core/README.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The LangChain ecosystem is built on top of `langchain-core`. Some of the benefit
3434

3535
## πŸ“– Documentation
3636

37-
For full documentation, see the [API reference](https://reference.langchain.com/python/langchain_core/).
37+
For full documentation, see the [API reference](https://reference.langchain.com/python/langchain_core/). For conceptual guides, tutorials, and examples on using LangChain, see the [LangChain Docs](https://docs.langchain.com/oss/python/langchain/overview).
3838

3939
## πŸ“• Releases & Versioning
4040

β€Žlibs/langchain/README.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In most cases, you should be using the main [`langchain`](https://pypi.org/proje
2424

2525
## πŸ“– Documentation
2626

27-
For full documentation, see the [API reference](https://reference.langchain.com/python/langchain_classic).
27+
For full documentation, see the [API reference](https://reference.langchain.com/python/langchain_classic). For conceptual guides, tutorials, and examples on using LangChain, see the [LangChain Docs](https://docs.langchain.com/oss/python/langchain/overview).
2828

2929
## πŸ“• Releases & Versioning
3030

β€Žlibs/langchain_v1/README.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ LangChain [agents](https://docs.langchain.com/oss/python/langchain/agents) are b
2626

2727
## πŸ“– Documentation
2828

29-
For full documentation, see the [API reference](https://reference.langchain.com/python/langchain/langchain/).
29+
For full documentation, see the [API reference](https://reference.langchain.com/python/langchain/langchain/). For conceptual guides, tutorials, and examples on using LangChain, see the [LangChain Docs](https://docs.langchain.com/oss/python/langchain/overview).
3030

3131
## πŸ“• Releases & Versioning
3232

β€Žlibs/model-profiles/README.mdβ€Ž

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@
1010
1111
Centralized reference of LLM capabilities for LangChain chat models.
1212

13-
## Overview
13+
## Quick Install
14+
15+
```bash
16+
pip install "langchain[model-profiles]"
17+
```
18+
19+
## πŸ€” What is this?
1420

1521
`langchain-model-profiles` enables programmatic access to model capabilities through a `.profile` property on LangChain chat models.
1622

1723
This allows you to query model-specific features such as context window sizes, supported input/output modalities, structured output support, tool calling capabilities, and more.
1824

19-
## Data sources
25+
## πŸ“– Documentation
2026

21-
This package is built on top of the excellent work by the [models.dev](https://github.com/sst/models.dev) project, an open source initiative that provides model capability data.
27+
For full documentation, see the [API reference](https://reference.langchain.com/python/langchain_model_profiles/). For conceptual guides, tutorials, and examples on using LangChain, see the [LangChain Docs](https://docs.langchain.com/oss/python/langchain/overview).
2228

23-
This package augments the data from models.dev with some additional fields. We intend to keep this aligned with the upstream project as it evolves.
29+
---
2430

25-
## Installation
26-
27-
```bash
28-
pip install "langchain[model-profiles]"
29-
```
31+
## Data sources
3032

31-
Or with uv:
33+
This package is built on top of the excellent work by the [models.dev](https://github.com/sst/models.dev) project, an open source initiative that provides model capability data.
3234

33-
```bash
34-
uv add "langchain[model-profiles]"
35-
```
35+
This package augments the data from models.dev with some additional fields. We intend to keep this aligned with the upstream project as it evolves.
3636

3737
## Usage
3838

@@ -60,7 +60,3 @@ if profile.get("..."):
6060
## Available fields
6161

6262
See `ModelProfile` in [`model_profile.py`](./langchain_model_profiles/model_profile.py) for the full list of available fields and their descriptions.
63-
64-
## License
65-
66-
MIT

β€Žlibs/partners/anthropic/README.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,14 @@ This package contains the LangChain integration for Anthropic's generative model
1919

2020
## πŸ“– Documentation
2121

22-
View the [documentation](https://docs.langchain.com/oss/python/integrations/providers/anthropic) for more details.
22+
For full documentation, see the [API reference](https://reference.langchain.com/python/integrations/langchain_anthropic/). For conceptual guides, tutorials, and examples on using these classes, see the [LangChain Docs](https://docs.langchain.com/oss/python/integrations/providers/anthropic).
23+
24+
## πŸ“• Releases & Versioning
25+
26+
See our [Releases](https://docs.langchain.com/oss/python/release-policy) and [Versioning](https://docs.langchain.com/oss/python/versioning) policies.
27+
28+
## πŸ’ Contributing
29+
30+
As an open-source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.
31+
32+
For detailed information on how to contribute, see the [Contributing Guide](https://docs.langchain.com/oss/python/contributing/overview).

β€Žlibs/partners/deepseek/README.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,14 @@ This package contains the LangChain integration with DeepSeek.
1919

2020
## πŸ“– Documentation
2121

22-
View the [documentation](https://docs.langchain.com/oss/python/integrations/providers/deepseek) for more details.
22+
For full documentation, see the [API reference](https://reference.langchain.com/python/integrations/langchain_deepseek/). For conceptual guides, tutorials, and examples on using these classes, see the [LangChain Docs](https://docs.langchain.com/oss/python/integrations/providers/deepseek).
23+
24+
## πŸ“• Releases & Versioning
25+
26+
See our [Releases](https://docs.langchain.com/oss/python/release-policy) and [Versioning](https://docs.langchain.com/oss/python/versioning) policies.
27+
28+
## πŸ’ Contributing
29+
30+
As an open-source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.
31+
32+
For detailed information on how to contribute, see the [Contributing Guide](https://docs.langchain.com/oss/python/contributing/overview).

β€Žlibs/partners/fireworks/README.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,14 @@ This is the partner package for tying Fireworks.ai and LangChain. Fireworks real
1919

2020
## πŸ“– Documentation
2121

22-
View the [documentation](https://docs.langchain.com/oss/python/integrations/providers/fireworks) for more details.
22+
For full documentation, see the [API reference](https://reference.langchain.com/python/integrations/langchain_fireworks/). For conceptual guides, tutorials, and examples on using these classes, see the [LangChain Docs](https://docs.langchain.com/oss/python/integrations/providers/fireworks).
23+
24+
## πŸ“• Releases & Versioning
25+
26+
See our [Releases](https://docs.langchain.com/oss/python/release-policy) and [Versioning](https://docs.langchain.com/oss/python/versioning) policies.
27+
28+
## πŸ’ Contributing
29+
30+
As an open-source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.
31+
32+
For detailed information on how to contribute, see the [Contributing Guide](https://docs.langchain.com/oss/python/contributing/overview).

β€Žlibs/partners/groq/README.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,14 @@ pip install langchain-groq
1515

1616
## πŸ“– Documentation
1717

18-
View the [documentation](https://docs.langchain.com/oss/python/integrations/providers/groq) for more details.
18+
For full documentation, see the [API reference](https://reference.langchain.com/python/integrations/langchain_groq/). For conceptual guides, tutorials, and examples on using these classes, see the [LangChain Docs](https://docs.langchain.com/oss/python/integrations/providers/groq).
19+
20+
## πŸ“• Releases & Versioning
21+
22+
See our [Releases](https://docs.langchain.com/oss/python/release-policy) and [Versioning](https://docs.langchain.com/oss/python/versioning) policies.
23+
24+
## πŸ’ Contributing
25+
26+
As an open-source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.
27+
28+
For detailed information on how to contribute, see the [Contributing Guide](https://docs.langchain.com/oss/python/contributing/overview).

β€Žlibs/partners/huggingface/README.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,14 @@ This package contains the LangChain integrations for Hugging Face related classe
1919

2020
## πŸ“– Documentation
2121

22-
View the [documentation](https://docs.langchain.com/oss/python/integrations/providers/huggingface) for more details.
22+
For full documentation, see the [API reference](https://reference.langchain.com/python/integrations/langchain_huggingface/). For conceptual guides, tutorials, and examples on using these classes, see the [LangChain Docs](https://docs.langchain.com/oss/python/integrations/providers/huggingface).
23+
24+
## πŸ“• Releases & Versioning
25+
26+
See our [Releases](https://docs.langchain.com/oss/python/release-policy) and [Versioning](https://docs.langchain.com/oss/python/versioning) policies.
27+
28+
## πŸ’ Contributing
29+
30+
As an open-source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.
31+
32+
For detailed information on how to contribute, see the [Contributing Guide](https://docs.langchain.com/oss/python/contributing/overview).

β€Žlibs/partners/mistralai/README.mdβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,14 @@ pip install langchain-mistralai
1515

1616
## πŸ“– Documentation
1717

18-
View the [documentation](https://docs.langchain.com/oss/python/integrations/providers/mistralai) for more details.
18+
For full documentation, see the [API reference](https://reference.langchain.com/python/integrations/langchain_mistralai/). For conceptual guides, tutorials, and examples on using these classes, see the [LangChain Docs](https://docs.langchain.com/oss/python/integrations/providers/mistralai).
19+
20+
## πŸ“• Releases & Versioning
21+
22+
See our [Releases](https://docs.langchain.com/oss/python/release-policy) and [Versioning](https://docs.langchain.com/oss/python/versioning) policies.
23+
24+
## πŸ’ Contributing
25+
26+
As an open-source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.
27+
28+
For detailed information on how to contribute, see the [Contributing Guide](https://docs.langchain.com/oss/python/contributing/overview).

0 commit comments

Comments
Β (0)